home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 6 / dutility.zip / UTILITY.DOC < prev   
Text File  |  1988-02-23  |  4KB  |  92 lines

  1. Program  : List
  2. Author   : Steve Dee
  3. Language : Microsoft C 4.0
  4. Version  : 2.0 created November 1986
  5.  
  6. Notes:
  7.  
  8. List will produce formatted hardcopy output of text files.
  9. The use of the wildcard characters * and ? and the use of PATH's is
  10. supported.
  11. ** Caution ** List does not check to see what kind of file it is listing,
  12. so if you tell it to list an .EXE file it will attempt to, usually with
  13. bizarre results since it is sending ASC values to the printer that the
  14. printer cannot understand.
  15.  
  16. Syntax:   List B:\DOS\DOC\*.txt
  17.           list all files with an extension of .txt in the \DOS\DOC directory on
  18.           drive B.
  19.  
  20. Valid Parameters :
  21.  
  22.           Margins can be set by using the parameters L,R,T,B.
  23.           i.e. List b:\DOS\DOC\*.txt L0/R50/T0/B10 will set a left margin of
  24.                0, right of 50, top of 0, and bottom of 10.  Default settings
  25.                are L-8,R-79,T-2,B-55.
  26.  
  27. Program  : Stat
  28. Author   : Steve Dee
  29. Language : Microsoft C 4.0
  30. Version  : 2.0
  31.  
  32. The use of the wildcard characters * and ? IS allowed.
  33. The use of PATH's ARE allowed.
  34. Setting a file to NORMAL will remove any current attributes.
  35. Setting a file to anything else will ADD those attributes to the 
  36. current file attributes.
  37. Sub-directories MAY be set to HIDDEN and/or SYSTEM.
  38. Syntax: stat drive:\path\filename parameters
  39. Valid Parameter Values Are:
  40.     N - Normal File
  41.     H - Hidden File
  42.     S - System File
  43.     A - Set Archive On
  44.     U - Set Archive Off
  45. i.e. stat a:\path\test.com rhsa
  46.      will set TEST.COM to Read Only, Hidden File, System File,
  47.      and set the Archive Bit on.
  48. exception: Stat will not set itself to HIDDEN/SYSTEM for safety reasons.
  49.  
  50.  
  51. Program:  Move
  52. Author :  Steve Dee
  53. Version:  1.1
  54.  
  55. Notes:
  56.   
  57.         Move allows you to move files between directories on the same drive.
  58. It does not make a copy, it simply changes the directory information.  The
  59. use of the Wildcards ? and * is supported.  Move uses the DOS rename function
  60. so as an added bonus you can move a file and rename it at the same time.
  61.  
  62. Syntax :  Move \DOS\TEMP\*.* \NEW\*.*
  63.           move all files from directory \DOS\TEMP to directory \NEW.
  64.  
  65.           Move \DOS\*.exe \BACK\*.bak
  66.           move all files with an extension of .EXE from directory \DOS to
  67.           directory \BACK and rename them with an extension on .BAK
  68.  
  69.           Move a:\DOS\*.* b:\NEW\*.*
  70.           ** illegal **  you cannot move files to a different drive.
  71.  
  72.  
  73. Disclaimer:  
  74.  
  75.           Standard Shareware disclaimer.  I am not responsible for any harm
  76.           done to anyone, anything, or anyplace by the use of these programs.
  77.  
  78. Who may use these Programs:
  79.  
  80.           List, Stat and Move are Shareware programs.  You are encouraged to
  81.           give them to anyone who wants them, friends and enemies alike.  If
  82.           you find these programs of use, a donation would be appreciated 
  83.           suggested ($10.00).  If you are a Business and use these programs
  84.           the donation is mandatory.
  85.           If you find bugs in these programs please tell me about them and I
  86.           will do my best to correct them.  I can be reached at (918)836-8735
  87.           3815 E. 9th St. Tulsa, Ok.  74112 or leave me a message on the 1st    
  88.           Amendment BBS (918)252-5542 or the Bitstream BBS (918)252-9728.
  89.           (E-mail is fine or leave the message in the C Creatures Sig on 1st
  90.           Amendment or the MS-DOS Sig on Bitstream as those sections are run
  91.           by myself).
  92.